home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
wb
/
czesc_2
/
iconextras
/
rexx
/
deleteicon.rexx
next >
Wrap
OS/2 REXX Batch file
|
1995-01-15
|
300b
|
9 lines
/* deletes icon of given file/directory */
parse arg filename
address command
filename=strip(filename,'B','"') /* remove quotes */
filename=strip(filename) /* remove spaces */
filename=strip(filename,'T','/') /* Finally, remove trailing slash */
'deleteicon' """"filename".info"""
exit